home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / eckelt01.zip / 13 / MAKEFILE.MS < prev    next >
Text File  |  1994-10-24  |  285b  |  23 lines

  1. # Makefile for Microsoft Visual C++ 2.0
  2. # Tested on Windows NT 3.5
  3. CPP = cl
  4.  
  5. .c.exe:
  6.   $(CPP) $<
  7.  
  8. .cpp.exe:
  9.   $(CPP) $<
  10.   
  11. .cpp.obj:
  12.   $(CPP) -c $*.cpp
  13.  
  14. all: WIND2.exe \
  15. WIND3.exe \
  16. WIND4.exe \
  17. SIZES.exe \
  18. EARLY.exe \
  19. WIND5.exe \
  20. PVDEF.exe \
  21. ADDV.exe \
  22. SLICE.exe
  23.